home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 49 / PCPP49a.iso / editors / sofsdk / SoF SDK.msi / _5478B8954CCB422F8254CFCFFD23D5B0 < prev    next >
Encoding:
Text File  |  2000-03-27  |  728 b   |  23 lines

  1. #include "../common/header.ds"
  2. output "p:/base/ds/tsr1"
  3.  
  4.  
  5.  
  6. local entity endstepsguy1 // first dude who will jump down the stairs
  7. local entity endstepsguy2 // the second guy
  8.  
  9.  
  10. endstepsguy1 = find entity with targetname "endstepsguy1"
  11. endstepsguy2 = find entity with targetname "endstepsguy2"
  12.  
  13.  
  14.  
  15. animate entity endstepsguy2 performing action STD_JRUN_FWD_A_A by moving [0, -188, 0] // first guy jumps off the steps
  16. // animate entity endstepsguy1 performing action RUN by moving [-40, 0, 0] // second guy runs towards the steps
  17. // animate entity endstepsguy1 performing action STD_JRUN_FWD_A_A by moving [0, -128, 0] // jumps off the steps
  18.  
  19. animate entity endstepsguy2 performing action SCRIPT_RELEASE
  20. exit
  21.  
  22.  
  23.